* which-key.el (which-key--match-replacement,
which-key--propertize-key): Add explicit binding of case-fold-search to nil.
(when (and (consp key-binding) (not (symbolp (car replacement))))
(let ((key-regexp (caar replacement))
(binding-regexp (cdar replacement))
- case-fold-search)
+ (case-fold-search nil))
(and (or (null key-regexp)
(string-match-p key-regexp
(car key-binding)))
(mapconcat #'identity which-key-special-keys
"\\|")
"\\)"))
- case-fold-search)
+ (case-fold-search nil))
(save-match-data
(if (and which-key-special-keys
(string-match regexp key))